.container{
    min-height: 100vh;
    background-color: #d1edfbde;
    padding-top: 50px;
    width: 100%;
    background-image: url('../images/bg2.png'); 
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Banner */

.banner-holder {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.banner-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(30, 30, 30, 0.842) 30%, rgba(30,30,30,0.1) 60%, rgba(255,255,255,0) 100%);
    z-index: 2;
}

.banner-text {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: left;
    max-width: 600px;
    margin-left: 40px;
}

.banner-text h1{
    font-size: 60px;
    margin-bottom: 30px;
    color: white;

}

.banner-text p{
    font-size: 35px;
    margin-bottom: 30px;

}

.banner-button{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #7450af;
    border-radius: 50px;
    width: fit-content;
}
.banner-button a{
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    font-size: 30px;
    font-weight: 400;
}

.banner-button:hover{
    background-color: #7450af;
    transition: all 0.3s ease-in-out;
}

.banner-image-holder {
    position: relative;
    z-index: 3;
}
.banner-image-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.title-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
}

.title-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}



/* Banner */

.content-holder{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px auto 0;

}

/* Most Popular */

.most-popular-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;

}

.most-popular-holder h2{
    color: #7450af;
    font-size: 50px;
    margin-bottom: 30px;
}

.mp-card-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.mp-card{
    width:33%;
    background-color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.mp-image{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mp-card img{
    width: 100%;
    
    object-fit: cover;
    border-radius: 10px;
}

.mp-text{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.mp-text h3{
    font-size: 30px;
    margin: 10px 0;
}
.mp-text p{
    font-size: 20px;
    margin: 0;
}

.old-price{
    text-decoration:line-through;
    color:#e73c38;
}


.add-to-cart{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #e73c38;
    border-radius: 50px;
    width: fit-content;
    margin-top: 20px;
    cursor: pointer;
}

.add-to-cart a{
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}
.add-to-cart:hover{
    background-color: #7450af;
    transition: all 0.3s ease-in-out;
}

/* Most Popular */

/* GTN */

.gtn-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin:50px 20px
}

.gtn-holder h2{
    color: #7450af;
    font-size: 50px;
    margin-bottom: 30px;
}

.gtn-card-holder{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    margin: 20px auto;
}

.gtn-card{
    width: 33%;
}

.gtn-card a{
    text-decoration: none;
}

.gtn-top{
    width: 100%;
    gap: 20px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-items: stretch;
}


.gtn-text {
    height: 100%;
    display: flex;
    justify-content: start;
    flex-direction: column;
    font-size: 25px;
    padding: 30px;
    min-height: 550px;

}

.gtn-text p{
    font-size: 23px;
    margin: 0;
    color: #3b3b3b;
}

.gtn-text h3{
    font-size: 45px;
    margin: 10px 0;
    color: #7450af;
}

.gtn-image{
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 300px;
    overflow: hidden;
}

.gtn-top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gtn-bottom{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff400;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 30px;
    padding: 20px;
    color: #7450af;
    gap: 15px;

}

.gtn-bottom:hover{
    background-color: #e73c38;
    color: white;
    transition: all 0.3s ease-in-out;
}

/* GTN */

/* Bonton */

.bonton-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin:50px 20px

}
.bonton-holder h2{
    color: #7450af;
    font-size: 50px;
    margin-bottom: 30px;
    margin-top: 40px;
}

.bonton-text-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px;
    background-color: white;
    font-size: 40px;
    padding: 30px;
    border-radius: 10px;
}

.bonton-text-holder p{
    text-align: center;
    width: 80%;
    font-size: 25px;
}

.bonton-img-holder{
    overflow: hidden;
}

.bonton-img-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;

}

.bonton-holder a{
    text-decoration: none;
    width: 100%;
}

.bonton-link-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff400;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 30px;
    padding: 20px;
    color: #7450af;
    gap: 15px;
}

.bonton-link-holder:hover{
    background-color: #e73c38;
    color: white;
    transition: all 0.3s ease-in-out;
}

/* Bonton */

/* About */

.about-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin:50px 20px

}
.about-holder h2{
    color: #7450af;
    font-size: 50px;
    margin-bottom: 30px;
}

.ab-text{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin: 20px;
    background-color: white;
    font-size: 40px;
    padding: 30px;
    border-radius: 10px;
}

.text-holder{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 40%;
}

.ab-text p{
    width: 100%;
    font-size: 30px;
    color:#5402db;
}
.ab-img-holder{
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
}
.ab-img-holder img{
    width: 40%;
    border-radius:20px;
}

/* About */

/* why us */

.why-us-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin:50px 20px

}
.why-us-holder h2{
    color: #7450af;
    font-size: 50px;
    margin-bottom: 30px;
}

.why-us-card-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px;
}

.why-us-card {
    width: 100%;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    height: auto; /* Ensure height adjusts to content */
}

.why-us-card-holder {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Ensure all cards stretch to the same height */
    gap: 20px;
}

.why-us-card {
    flex: 1; /* Allow cards to grow equally */
    display: flex;
    flex-direction: column;
    width: 30%; /* Set a fixed width for cards */
    text-align: center;
}

.why-us-card h3{
    font-size: 40px;
    margin: 25px 0;
    color: #7450af;
}

.why-us-card p{
    font-size: 30px;
    margin: 0;
}

.why-us-holder a{
    text-decoration: none;
}

.why-us-link-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e73c38;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 30px;
    padding: 20px;
    color: white;
}

.why-us-link-holder:hover{
    background-color: #7450af;
    color: white;
    transition: all 0.3s ease-in-out;
}
/* why us */


/* Mobile */
@media (max-width: 768px) {
        .container{
        background-image: url('../images/mobile-bg.png');

    }
    .banner-overlay{
        background: none;
    }

    .banner-text{
        text-align: center;
        margin-left: 0;
        padding: 20px;
    }

    .banner-text h1{
        font-size: 40px;
    }
    .banner-text p{
        font-size: 20px;
    }

    .banner-button{
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        width: 100%;
        margin: 10px auto;
    }

    .banner-button a{
        font-size: 20px;
    }
    .mp-card-holder{
        flex-direction: column;
        gap: 0;
    }
    .mp-card{
        width: 100%;
        margin-bottom: 20px;
    }
    .gtn-card-holder{
        flex-direction: column;
        gap: 0;
    }
    .gtn-card{
        width: 100%;
        margin-bottom: 20px;
       
    }
    
    .gtn-text{
         min-height:0;
        height:auto;
    }

    .bonton-holder{
        flex-direction: column;
        gap: 0;
    }

    .bonton-text-holder{
        flex-direction: column;
        gap: 0;
    }

    .ab-text{
        flex-direction: column;
        gap: 0;
    }

    .text-holder{
        width: 100%;
    }

    .ab-img-holder{
        width: 100%;
        flex-direction: column;

    }
    
    .ab-img-holder img {
        width:90%;
        
    }
    
    .why-us-card-holder{
        flex-direction: column;
        gap: 0;
    }

    .why-us-card {
        width: 100%;
        margin-bottom: 20px;
    }

    
    .why-us-holder h2{
        text-align: center;
        font-size: 40px !important;
    }

    .bonton-holder h2{
        text-align: center;
        font-size: 40px !important;
    }

    .gtn-holder h2{
        text-align: center;
        font-size: 40px !important;
    }

    
}


